All checks were successful
Deploy c4 / deploy (push) Successful in 1m19s
Use a Gitea Actions workflow to deploy on push to main via act_runner on the games VM. Switch from a Docker named volume to a ./data bind mount for easier backup and persistence across deploys.
15 lines
241 B
YAML
15 lines
241 B
YAML
services:
|
|
c4:
|
|
build: .
|
|
container_name: c4
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:8080"
|
|
env_file:
|
|
- path: .env
|
|
required: false
|
|
environment:
|
|
- PORT=8080
|
|
volumes:
|
|
- ./data:/app/data
|