diff options
| author | Fuwn <[email protected]> | 2026-02-26 17:54:57 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-26 17:54:57 -0800 |
| commit | 6127f7af68c99541071dddcf35062559043786a7 (patch) | |
| tree | d4dd67b464849203ee7f89a6a11cbaac13503fbf /docker-compose.yml | |
| parent | chore: add prometheus scrape configuration (diff) | |
| download | plutia-test-6127f7af68c99541071dddcf35062559043786a7.tar.xz plutia-test-6127f7af68c99541071dddcf35062559043786a7.zip | |
chore: update docker and compose development setup
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 5009c56..5787c3c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ services: plutia: - image: ghcr.io/fuwn/plutia:0.1.0 - command: ["plutia", "serve", "--config=/etc/plutia/config.yaml"] + image: ghcr.io/fuwn/plutia:latest + command: ["serve", "--config=/etc/plutia/config.yaml"] user: "${PLUTIA_USER:-1000:1000}" init: true stop_signal: SIGTERM @@ -25,7 +25,7 @@ services: ports: - "8080:8080" volumes: - - ./config.default.yaml:/etc/plutia/config.yaml:ro + - ./config.yaml:/etc/plutia/config.yaml:ro - ./data:/var/lib/plutia healthcheck: test: ["CMD", "wget", "-q", "-O-", "http://127.0.0.1:8080/health"] |