Created
September 18, 2023 02:57
-
-
Save NebulaBC/53921b2c4963d126bba9a9b9a372f33b to your computer and use it in GitHub Desktop.
Anisette v3 docker compose config for SideStore. Open port 6969 on your host, or reverse proxy it through nginx for ssl.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
anisette: | |
image: dadoum/anisette-v3-server:latest | |
container_name: anisette | |
user: "1000:1000" | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
ports: | |
- 6969:6969 | |
volumes: | |
- ./data:/home/Alcoholic/.config/anisette-v3/lib/ | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment