1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-09-11 23:09:22 +02:00

chore: rename docker-compose.yml to compose.yaml

Ref: https://docs.docker.com/compose/compose-file/03-compose-file/
This commit is contained in:
2023-07-28 11:38:34 +02:00
parent 49599d25ed
commit f1509d0af1
4 changed files with 3 additions and 3 deletions

11
compose.yaml Normal file
View File

@@ -0,0 +1,11 @@
services:
theoludwig:
container_name: ${COMPOSE_PROJECT_NAME}
image: 'theoludwig'
restart: 'unless-stopped'
build:
context: './'
network_mode: 'host'
environment:
PORT: ${PORT-3000}
env_file: '.env'