mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 14:03:27 +00:00
12 lines
270 B
Bash
Executable File
12 lines
270 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# nginx server
|
|
docker build --target phraseanet-nginx -t local/phraseanet-nginx:$1 .
|
|
|
|
# php-fpm application
|
|
docker build --target phraseanet-fpm -t local/phraseanet-fpm:$1 .
|
|
|
|
# worker
|
|
docker build --target phraseanet-worker -t local/phraseanet-worker:$1 .
|
|
|