2024-04-07 07:59:11 +00:00
|
|
|
services:
|
|
|
|
actaeon:
|
|
|
|
container_name: actaeon
|
|
|
|
build:
|
|
|
|
dockerfile: ./Dockerfile
|
|
|
|
environment:
|
|
|
|
- AUTOMIGRATE=true
|
|
|
|
- DATABASE_URL=mysql://aime:aime@127.0.0.1:3306/aime
|
|
|
|
- NEXTAUTH_SECRET=[insert_random_string_here]
|
|
|
|
ports:
|
2024-04-07 10:44:25 +00:00
|
|
|
- 1430:3000
|
2024-04-07 09:48:55 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
|