wrappd.sh/docker-compose.yml

20 lines
324 B
YAML
Raw Permalink Normal View History

2024-12-05 14:00:58 +01:00
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