wrappd.sh/docker-compose.yml
2024-12-05 14:01:14 +01:00

20 lines
324 B
YAML

name: "wrappd-sh"
version: "3.8"
services:
web:
container_name: wrappdsh
hostname: wrappdsh
env_file:
- ./.env
build:
context: .
dockerfile: Dockerfile
volumes:
- ./:/code/
stdin_open: true
tty: true
ports:
- ${SERVER_PORT}:${SERVER_PORT}
restart: always