Hello
I am a new user, trying to install Taiga on Oracle Cloud. In the virtual network interface card of Oracle Cloud, ports 21 to 9999 are open to TCP connections.
I did :
git clone https://github.com/kaleidos-ventures/taiga-docker.git
then
cd taiga-docker/
followed by
git checkout stable
I edited docker-compose.penpot.env
:
Should be set to the public domain when penpot is going to be
# served.
PENPOT_FLAGS=enable-registration enable-login enable-demo-users disable-email-verification disable-smtp enable-log-emails
PENPOT_PUBLIC_URI=http://my.oracle.public.ip/taiga:9001
# Standard database connection parametes (only postgresql is
# supported):
PENPOT_DATABASE_URI=postgresql://penpot-postgres/penpot
PENPOT_DATABASE_USERNAME=penpot
PENPOT_DATABASE_PASSWORD=penpot
etc
I notice that ./launch-all.sh
will fail with: docker compose -f docker-compose.dev.yml build
. So according to this guide, I installed docker-compose, and changed the bash files launch-all
and launch-taiga
:
set -x
exec docker-compose -f docker-compose.yml -f docker-compose.penpot.yml up -d $@
I also edit the .env
file :
TAIGA_SCHEME=http # serve Taiga using "http" or "https" (secured) connection
TAIGA_DOMAIN=my.oracle.public.ip:9000 # Taiga's base URL
SUBPATH="/taiga" # it'll be appended to the TAIGA_DOMAIN (use either "" or a "/subpath")
WEBSOCKETS_SCHEME=ws # events connection protocol (use either "ws" or "wss")
Then I do
docker-compose up -d
./launch-all.sh
./launch-taiga.sh
Then i try:
http:// my. oracle.public.ip → NGINX welcome page is visible
http:// my. oracle.public.ip/taiga → 404 error
http:// my. oracle.public.ip:9000/taiga → 404 error
http:// my. oracle.public.ip/taiga:9000 → 404 error
http:// my. oracle.public.ip:9001 → penpot registration page visible.
[Space added because new user. In the links, actually i call them without space]
How can I install taiga on Oracle Cloud? Thank you.