Files
FloatingIsland/docker-compose.yml

13 lines
432 B
YAML

services:
app:
# This will use the image from the registry.
image: ghcr.io/solsynth/floating-island:master
# This maps the .env file from your project root into the container.
env_file:
- .env
# This maps port 3000 on your host to port 3000 in the container.
ports:
- "3000:3000"
# This ensures the container restarts automatically unless it's stopped manually.
restart: unless-stopped