This file contains hidden or 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
############################################################################ | |
# # | |
# ------- Useful Docker Aliases -------- # | |
# # | |
# # Installation : # | |
# copy/paste these lines into your .bashrc or .zshrc file or just # | |
# type the following in your current shell to try it out: # | |
# wget -O - https://gist.githubusercontent.com/jgrodziski/9ed4a17709baad10dbcd4530b60dfcbb/raw/d84ef1741c59e7ab07fb055a70df1830584c6c18/docker-aliases.sh | bash | |
# # | |
# # Usage: # |
This file contains hidden or 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: 2 | |
services: | |
mealie: | |
image: hkotel/mealie | |
container_name: mealie | |
restart: always | |
ports: | |
- 3413:9000 | |
environment: | |
db_username: root |
This file contains hidden or 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: | |
firefox: | |
ports: | |
- '6911:6901' #change 6901 as necessary. eg. '6901:6901', '6902:6901', '6903:6901' | |
environment: | |
- VNC_PW=password #change as desired | |
shm_size: '512m' #change per your needs. eg. '512m', '1gb', '2gb' | |
image: 'kasmweb/firefox:1.9.0' #change the image to your desired image |
This file contains hidden or 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' | |
services: | |
koel: | |
image: hyzual/koel | |
depends_on: | |
- database | |
ports: | |
- 8181:80 #change this to for your settings | |
environment: |
This file contains hidden or 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.7" | |
services: | |
photostructure: | |
image: photostructure/server | |
restart: always | |
stop_grace_period: 2m | |
user: 1000:1000 # < If you need a different user id, see below | |
volumes: |
This file contains hidden or 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: '2.1' | |
services: | |
wordpress1: | |
image: wordpress | |
restart: always | |
ports: | |
- 8282:80 | |
environment: |
This file contains hidden or 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: "2" | |
services: | |
app: | |
image: monica | |
depends_on: | |
- db | |
ports: | |
- 8485:80 | |
environment: |
This file contains hidden or 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: "2" | |
services: | |
app: | |
image: monica | |
depends_on: | |
- db | |
ports: | |
- 8485:80 | |
environment: |
This file contains hidden or 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: '2' | |
services | |
tubesync: | |
image: ghcr.io/meeb/tubesync:v0.9.1 | |
ports: | |
- 4848:4848 | |
environment: | |
- TZ=America/Denver | |
- PUID=998 | |
- PGID=100 |
This file contains hidden or 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
$ docker swarm init | |
###Didn't use the agent | |
#curl -L https://downloads.portainer.io/portainer-agent-stack.yml -o portainer-agent-stack.yml | |
#docker stack deploy --compose-file=portainer-agent-stack.yml portainer | |
### | |
$ docker stop portainer && docker rm portainer | |
$ docker volume ls |
OlderNewer