mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-07 17:04:51 +01:00
1fb7caa2d6
The repo now lives on an org! Move all references to the old path.
26 lines
659 B
YAML
26 lines
659 B
YAML
version: '3.5'
|
|
services:
|
|
atuin:
|
|
restart: always
|
|
image: ghcr.io/atuinsh/atuin:main
|
|
command: server start
|
|
volumes:
|
|
- "./config:/config"
|
|
links:
|
|
- postgresql:db
|
|
ports:
|
|
- 8888:8888
|
|
environment:
|
|
ATUIN_HOST: "0.0.0.0"
|
|
ATUIN_OPEN_REGISTRATION: "true"
|
|
ATUIN_DB_URI: postgres://atuin:really-insecure@db/atuin
|
|
postgresql:
|
|
image: postgres:14
|
|
restart: unless-stopped
|
|
volumes: # Don't remove permanent storage for index database files!
|
|
- "./database:/var/lib/postgresql/data/"
|
|
environment:
|
|
POSTGRES_USER: atuin
|
|
POSTGRES_PASSWORD: really-insecure
|
|
POSTGRES_DB: atuin
|