Reset history to current sanitized state
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
services:
|
||||
atuin-server:
|
||||
image: ghcr.io/atuinsh/atuin
|
||||
container_name: atuin-server
|
||||
restart: unless-stopped
|
||||
# ports:
|
||||
# - "8888:8888"
|
||||
command: server start
|
||||
env_file:
|
||||
- /srv/docker/secrets/atuin/.env
|
||||
environment:
|
||||
ATUIN_HOST: 0.0.0.0
|
||||
ATUIN_PORT: 8888
|
||||
ATUIN_OPEN_REGISTRATION: false # or false if you want invite-only
|
||||
depends_on:
|
||||
- postgresqlatuin
|
||||
networks:
|
||||
npm_proxy:
|
||||
ipv4_address: 192.168.98.16
|
||||
atuin_internal:
|
||||
|
||||
postgresqlatuin:
|
||||
image: postgres:15
|
||||
container_name: postgresqlatuin
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- /srv/docker/secrets/atuin/.env
|
||||
volumes:
|
||||
- /srv/appdata/atuin/postgres:/var/lib/postgresql/data
|
||||
networks:
|
||||
- atuin_internal
|
||||
|
||||
networks:
|
||||
npm_proxy:
|
||||
external: true
|
||||
atuin_internal:
|
||||
driver: bridge
|
||||
Reference in New Issue
Block a user